919ddc5f75fe8447947854c3fd4534ccfa16287b,src/ch/blinkenlights/android/vanilla/ThemeHelper.java,ThemeHelper,setTheme,#Context#number#,33
Before Change
{
if(usesHoloTheme() == false) {
TypedArray ar = context.getResources().obtainTypedArray(R.array.theme_styles);
int themeBase = ar.getResourceId(getSelectedTheme(context), R.style.VanillaBase);
ar.recycle();
switch (theme) {
After Change
default:
throw new IllegalArgumentException("setTheme() called with unknown theme!");
}
theme = ar.getResourceId(getSelectedTheme(context), -1);
ar.recycle();
}